home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / com / othernet / fidonet / checktic / readme.eng < prev   
Text File  |  1994-10-04  |  4KB  |  104 lines

  1. CHECKTIC
  2.  
  3. Version 1.0.1 - October 4th, 1994
  4.  
  5. workaround for TICKer-ST v.1.04beta from Rayko Balun
  6. for the CRC-checksum-comparison-function
  7.  
  8. from Markus Fischer
  9.  
  10. EMail-address: FidoNet: 2:2410/204.0
  11.                NeST:    90:400/303.0
  12.  
  13.  
  14. WHAT'S THIS PROGRAM FOR?
  15.  
  16. Everyone using TICKer-ST from Rayko Balun has obviously noticed 
  17. that it has some problems with TIC-files with a CRC-checksum 
  18. containing a leading zero. They are handled as having a bad 
  19. checksum and left with the accompaning file in the inbound- 
  20. folder. So the sysop has to do some additional work to remove the 
  21. "garbage". As I hate this work I've written this little program, 
  22. so it has to be done more seldom than without it.
  23.  
  24.  
  25. LEGAL WORKS AND DISCLAIMER
  26.  
  27. The use of the program is free. I'd like to get a feedback from 
  28. those using it, so please send a netmail to one of my adresses 
  29. above. Please do report bugs or suggestions via netmail too.
  30.  
  31. Distribution is allowed if no charges are taken and no changes 
  32. are made. This means no comments where you could get this and 
  33. other nice programs too!
  34.  
  35. I have made this program with care and tested it carefully. But I 
  36. will take no responsibility for things it does or not does to you 
  37. or your computer because of its use (or even its not-use).
  38.  
  39.  
  40. HOW TO USE CHECKTIC?
  41.  
  42. Obviously it should be started before using TICKer-ST. So put it 
  43. into the batchfile you use for processing incoming mail/files at 
  44. an appropiate place. CHECKTIC need exectly ONE parameter - the 
  45. path to the folder containing your TIC-files.
  46.  
  47. Example:
  48.           checktic.ttp e:\io\prot_in\
  49.  
  50. If you leave out the last backslash, CHECKTIC won't complain and 
  51. add it internally. That's all ... :-)
  52.  
  53. BUT BE CAREFULL: CHECKTIC doesn't check the parameter about being 
  54. useful or the existence of the folder. I don't guarantee for the 
  55. reaction of CHECKTIC, if you call it with 
  56. "Here_I_have_my_TIC-files" - it is YOU responsible that there is 
  57. a folder with this name (good luck).
  58.  
  59. CHECKTIC looks into the folder for TIC-files and checks the 
  60. CRC-line for checksums with leading zeros. These files will be 
  61. overwritten with the corrected checksum. If you then run 
  62. TICKer-ST, it should complain about really bad CRC- checksums.
  63.  
  64. CHECKTIC will give back the following return-values, so you could 
  65. react in run-time within your batchfile:
  66.  
  67. 0 - everything ok
  68.     this could mean: - no TIC-files found
  69.                      - all TIC-files were ok
  70.                      - one ore more files were corrected
  71.                      - some TIC-files couldn't been processed 
  72.                        (see LIMITATIONS)
  73.  
  74. 1 - wrong number of parameters or parameter too long
  75.  
  76. 2 - insufficient memory for internal buffer
  77.     CHECKTIC uses 64KB for an internal buffer - if you don't have 
  78.     this amount of memory free left, you're in trouble deep ...
  79.  
  80. LIMITATIONS:
  81.  
  82. The current version has some limitations:
  83.  
  84. - TIC-files with a size of >64 KB are not processed because the 
  85.   program uses a static buffer of this size. Such monster-TICs 
  86.   I've never seen here, but who knows... If needed I can change 
  87.   it by increasing the size of the static buffer or switching the 
  88.   program to "dynamic" buffering. Please contact me, if you need 
  89.   this.
  90.  
  91. - As written above CHECKTIC doesn't check the path-parameter you 
  92.   started the program with. For this little program I thought 
  93.   this would be too much work. As you usually use this program 
  94.   within a batchfile this seems not to be too much trouble for 
  95.   you. 
  96.  
  97. Done ... the work's done - and the doc probably longer than the 
  98. program itself ...
  99.  
  100. Berlin, Oct. 1st, 1994
  101.  
  102. Version 1.0.1 (Oct 4th):
  103. bugfix: check for trailing backslash pointed to the '\0' insted
  104.         of the last character of the parameter-string -> fixed